home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / Math Visin v2.1 disk 2.adf / DataTemplates / 1d_array_scaled < prev    next >
Text File  |  1992-02-14  |  612b  |  31 lines

  1. ! 1d_Array_Scaled     one dimensional array with count and scaling at top
  2. !
  3. !-------------------------------- Prototype of data file --------------------
  4. ! elements  low_limit high_limit
  5. ! data
  6. ! data 
  7. ! data
  8. ! data
  9. !-------------------------------- Example of data file -----------------------
  10. ! 5 .4 .8    ! 5 elements, scaled from .4 to .8 
  11. ! 4.3  ! actual data
  12. ! 3.4 
  13. ! 5.6
  14. ! 1.2
  15. ! 6.7
  16. !--------------------------------
  17.  
  18. Define Elements Integer
  19. Define Low Real
  20. Define High Real
  21.  
  22. Read Elements Low High
  23.  
  24. BeginStructure
  25.   DefArray Elements Low High
  26.       DefDataType IEEE8
  27.   EndArray
  28. EndStructure
  29.  
  30. RecurseRead
  31.